home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / High Level Languages / Turbo C v2.0 / Include / Sys / Timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-28  |  425 b   |  28 lines

  1. /*    timeb.h
  2.  
  3.     Struct and function declarations for ftime().
  4.  
  5.     Copyright (c) Borland International 1987,1988
  6.     All Rights Reserved.
  7. */
  8.  
  9. #if __STDC__
  10. #define _Cdecl
  11. #else
  12. #define _Cdecl cdecl
  13. #endif
  14.  
  15. #ifndef  __TIMEB_DEFINED
  16. #define  __TIMEB_DEFINED
  17.  
  18. struct timeb {
  19.       long  time;
  20.       short millitm;
  21.       short timezone;
  22.       short dstflag;
  23.       };
  24.  
  25. #endif
  26.  
  27. void _Cdecl ftime(struct timeb *);
  28.